home *** CD-ROM | disk | FTP | other *** search
- Path: ccc.govt.nz!mcauslanb
- From: mcauslanb@ccc.govt.nz
- Newsgroups: comp.lang.c
- Subject: void pointers
- Date: 12 Jan 96 13:33:22 NZDT
- Organization: Christchurch City Council, New Zealand.
- Message-ID: <1996Jan12.133322.1@ccc.govt.nz>
- NNTP-Posting-Host: durin.ccc.govt.nz
-
- I am writing a C program for an application that has a development language
- based on ANSI C.
-
- A function that I need to call is defined:
- void getFence (void **clipPP);
-
- where "clipPP" is returned by the function.
-
- 1) How do I declare and pass clipPP?
- 2) What is actually going on?
-
-